| Previous | Home | Next |
<html>
<head>
<title>print cube no for 1 to 10</title>
</head>
<body>
<?php
$a;
$i;
{
for($a=1;$a<=10;$a++)
{
$i=$a*$a*$a;
echo("$i<br>");
}
}
?>
</body>
</html>
1 8 27 64 125 216 343 512 729 1000
| Previous | Home | Next |
|
PHP Programing language
|